visual basic, vb, active server pages, asp, DHTML, vbscript,java, javscript, c, c++, c__ , source, code, sample, samples, program, programs, routine, routines, source code, snippet, snippets, control, controls, class, classes, module

You are in:
 
The Basics
Visual Basic Home
Categories
Search
Submissions

Advanced
Newest Code
Top Code of Month
Top Code of All Time
Code of the Day
Coding Contest

Beyond the Code
Discuss
Tutorials
Recommend-
ed Reading

Customize

Miscellaneous
Site Home
Other Sites

Latest Code Ticker for Visual Basic
Click here to see a screenshot of this code! Remote MTS Administration
By Theo Kandiliotis on 5/23

(Screen Shot)

Single String Remove
By Taylor McGee on 5/23


Remote Keylogger
By TheCryptic on 5/23


Compact Database using JRO (Jet & Replication objects)
By Justin Spencer on 5/23


Compress text by more than 25% and still read it!
By Nick Johnson on 5/23


Recieve POP3 email without using mswinsck.ocx using pure Windows API's
By Joseph Ninan on 5/23


Click here to see a screenshot of this code! ProcessManagement
By James Vincent Carnicelli on 5/23

(Screen Shot)

Combo Box. Must see
By Ali Ezzahir on 5/23


Click here to see a screenshot of this code! Win2k progressbar
By Wanna-Sk8er on 5/22

(Screen Shot)

Click here to see a screenshot of this code! Equation Graph
By Richard Furr on 5/22

(Screen Shot)

Click here to see a screenshot of this code! Dude Chat
By Travis Ruiz on 5/22

(Screen Shot)

Click here to see a screenshot of this code! TCP/IP Server Simulator
By James Vincent Carnicelli on 5/22

(Screen Shot)

Click here to see a screenshot of this code! FontSample
By James Vincent Carnicelli on 5/22

(Screen Shot)

Click here to see a screenshot of this code! ThumbWheel
By James Vincent Carnicelli on 5/22

(Screen Shot)

Click here to see a screenshot of this code! ColorPicker
By James Vincent Carnicelli on 5/22

(Screen Shot)

WindowText
By Ben Jones on 5/22


Click here to see a screenshot of this code! DeskLight
By Ben Jones on 5/22

(Screen Shot)

Hypertext
By José Luis Díaz Gómez on 5/22


Click here to see a screenshot of this code! A Credit Card Validator - NEW!!
By Sparq on 5/22

(Screen Shot)

irc client
By dungism on 5/22


Click here to see a screenshot of this code! Ascii Code Output
By Josh Donar on 5/22

(Screen Shot)

Click here to see a screenshot of this code! GetAllWindowsHwnd's(+childs), Put then in table
By M.C on 5/22

(Screen Shot)

Create dazzling FORM-BASED-Menus Using MouseOver
By Sparq on 5/22


Click here to see a screenshot of this code! DecHex Color Codes
By eboy on 5/22

(Screen Shot)

Click here to see a screenshot of this code! Display Current Mouse Pointer Image
By Will Brendel on 5/22

(Screen Shot)

Click here to see a screenshot of this code! Alarm Clock
By EXoDuS on 5/21

(Screen Shot)

Click here to put this ticker on your site!


Click here to join the
'Code of the Day' Mailing List


@Backup.com


SQL Server Magazine

Visual Basic Stats

Code: 593,363 lines
Users: 381 online
 
Search for: 
in language:
 
 
Sponsored by:
@Backup.com
 



   

Chat client/server\

winzip icon
Submitted on: 4/21/1999
By: John Stalcup

Level: Not Given
User Rating: By 5 Users
Compatibility:VB 5.0/6.0

Users have accessed this code 11879 times.
 
 
     Features: autodetects other chatters on tcp/ip networks, full rtf formatting, popup messages, and url sending. I call it client/server because their is no one main central server needed, so in effect, each client is also a server.
 
winzip icon Download code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by Planet Source Code for viruses, but no prevention program can catch 100% of all viruses.  For your own safety, please re-scan this file using a personal virus checker before using it. Also, NEVER run .exe's that are not accompanied by source code--whether from this site or any other site.

If you don't have a virus scanner, you can get one at many places on the net including: McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs and may compile it into an .exe/.dll/.ocx and distribute it in binary format freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 7 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Not Given category)?
(The codewith your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
5/22/1999 2:21:00 AM: kim-hyunwoo
Thank-you
Keep the Planet clean! If this comment was disrespectful, please click here.

 
7/16/1999 9:21:00 AM: Jon
Didn't work for me... kept getting 
"Address In Use" errors. 
Q:
Is this 
supposed to work over the net or only 
on LANs? It appears (after glancing 
over it) that you are parsing the IP 
prefix and then looping through and 
populating the last number to attract 
the rest of the network IPs and then 
connecting to them. This cannot work 
over the net becasue of the (almost) 
infinite IP addresses out there. Good 
try though...
Keep the Planet clean! If this comment was disrespectful, please click here.

 
7/22/1999 8:11:00 AM: robb
this program, more than likely, uses a 

udp/tcp session. which will work on 

LANs ONLY.

there is a better way 
than filtering 
the ip.  use a udp 
broadcast to 
255.255.255.0
Keep the Planet clean! If this comment was disrespectful, please click here.

 
9/7/1999 7:24:00 PM: Capt_A
kind of like a peer-to-peer network.
Keep the Planet clean! If this comment was disrespectful, please click here.

 
10/1/1999 9:59:00 AM: Franck
I made a little modification to your 
code that function was not working here 
is a simplier way to do it

Public 
Function getIPNumber(position As 
Integer, IP As String) As Integer

   
 Dim liste() As String
    
    ReDim 
liste(4)
    liste = Split(IP, ".")
  
  getIPNumber = Val(liste(position - 
1))

End Function
Keep the Planet clean! If this comment was disrespectful, please click here.

 
4/4/2000 9:50:29 AM: TiST
Good have been done better I suppose. 
Pretty easy to do when you think about 
it. I added a File Send/Receive 
function and am working on a Voice Msg 
- I am building up to my own ICQ-type 
program
Keep the Planet clean! If this comment was disrespectful, please click here.

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 
 

About the Site  |  Feedback  |  Link to the Site  |  Awards  |  Advertising

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.   By using this site you agree to its Terms and Conditions.   Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.